85600e87cd8e4e413510096f52f94086e08d5b8f,eppic-cli/src/main/java/eppic/assembly/CrystalAssemblies.java,CrystalAssemblies,score,#,565

Before Change


		
		// 3 Assign the BIO call to the highest probability
		if (uniques.size() > 0)
			uniques.get(maxIndx).setCall(CallType.BIO);
		
		// 4 Compute call confidence
		for (Assembly a:uniques)

After Change


		
		// 3 Assign the BIO call to the highest probability, if unique assembly
		if (uniques.size() > 0) {
			if (indices.size() == 1) {
				uniques.get(maxIndx).setCall(CallType.BIO);
			} else {
				for (Integer i:indices) {
					uniques.get(i).setCall(CallType.NO_PREDICTION);
				}
			}
		}